Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
jest-runtime
Advanced tools
The jest-runtime package is part of the Jest testing platform. It is responsible for executing tests and their associated code within a controlled environment. It handles the evaluation of the test files, mocking of modules, and provides utilities for loading and running the tests.
Module Mocking
Allows you to mock modules to isolate your tests from their dependencies, providing a way to test modules in isolation.
jest.mock('moduleName');
Test Environment Setup
Enables you to programmatically create a test environment, including the haste map (module map) and the test runner, which can be used to execute test files.
const runtime = require('jest-runtime');
// Create a runtime to execute the test
runtime.createHasteMap(config).then(hasteMap => {
const environment = new runtime.TestEnvironment(config);
const runner = new runtime.TestRunner(environment, hasteMap.resolver);
// Execute the test file
runner.runTest(filePath);
});
Script Transformation
Provides the ability to transform scripts using Jest's built-in transformers or custom ones. This is useful for preprocessing files before they are executed in the test environment.
const runtime = require('jest-runtime');
// Create a new runtime instance
const jestRuntime = new runtime.ScriptTransformer(config);
// Transform a script
const transformedCode = jestRuntime.transformSource(filePath, fileContent, false);
Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple. It is similar to jest-runtime in that it provides a test environment and runner, but it does not include a built-in mocking library or script transformation capabilities.
Jasmine is a behavior-driven development framework for testing JavaScript code. It does not require a DOM, and it has a clean, obvious syntax so that you can easily write tests. It is similar to jest-runtime in providing an environment for running tests, but it has a different assertion library and does not handle module mocking and script transformation in the same way.
AVA is a test runner for Node.js with a concise API, detailed error output, and process isolation that lets you develop with confidence. AVA is similar to jest-runtime in that it can run tests in parallel and supports the latest JavaScript features, but it differs in its approach to mocking and does not provide a built-in mechanism for script transformation.
29.7.0
[create-jest]
Add npm init
/ yarn create
initialiser for Jest projects (#14465)[jest-validate]
Allow deprecation warnings for unknown options (#14499)[jest-resolver]
Replace unmatched capture groups in moduleNameMapper
with empty string instead of undefined
(#14507)[jest-snapshot]
Allow for strings as well as template literals in inline snapshots (#14465)[@jest/test-sequencer]
Calculate test runtime if perStats.duration
is missing (#14473)[@jest/create-cache-key-function]
Cache access of NODE_ENV
and BABEL_ENV
(#14455)[jest-cli]
Move internal config initialisation logic to the create-jest
package (#14465)FAQs
Unknown package
The npm package jest-runtime receives a total of 19,004,198 weekly downloads. As such, jest-runtime popularity was classified as popular.
We found that jest-runtime demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.